mv arch/xen arch/xen.xen-x86
mkdir arch/xen
mv arch/xen.xen-x86/configs arch/xen
- mv include/asm-generic include/asm-generic.xen-x86
+# mv include/asm-generic include/asm-generic.xen-x86
mv include/linux include/linux.xen-x86
mkdir include/linux
fi
while(1);
}
+void notify_remote_via_irq(int virq)
+{
+ printk("notify_remote_via_irq called... FIXME??\n");
+ while(1);
+}
+
void unbind_virq_from_evtchn(int virq)
{
evtchn_op_t op;
op.cmd = EVTCHNOP_close;
- op.u.close.dom = DOMID_SELF;
+// op.u.close.dom = DOMID_SELF;
op.u.close.port = virq_to_evtchn[virq];
if ( HYPERVISOR_event_channel_op(&op) != 0 )
BUG();
// for drivers/xen/privcmd/privcmd.c
#define direct_remap_pfn_range(a,b,c,d,e,f) remap_pfn_range(a,b,c,d,e)
#define pfn_to_mfn(x) (x)
+#define mfn_to_pfn(x) (x)
#define machine_to_phys_mapping 0
#endif /* __HYPERVISOR_H__ */
#include <asm/vcpu.h>
#include <asm/dom_fw.h>
#include <public/memory.h>
+#include <public/sched.h>
extern unsigned long translate_domain_mpaddr(unsigned long);
extern struct ia64_pal_retval xen_pal_emulator(UINT64,UINT64,UINT64,UINT64);
#include <xen/serial.h>
#include <asm/io.h>
#include <xen/softirq.h>
+#include <public/sched.h>
efi_memory_desc_t ia64_efi_io_md;
EXPORT_SYMBOL(ia64_efi_io_md);